|
Public: Technology Reviews : Modifying mime emails
This page last changed on Dec 22, 2008 by scytacki.
This is useful to fix annoying issues between certain email senders and email clients. PHP
Other links: Issues: Notes: // A custom error handler
function CliErrorHandler($errno, $errstr, $errfile, $errline) {
fwrite(STDERR,"$errstr in $errfile on $errline\n");
}
// Tell PHP to use the error handler
set_error_handler('CliErrorHandler');
RubyThe Rmail library looks better than the php one. It seems like it would be easy to go from mime message to a struct and back again. http://www.rfc20.org/rubymail/ |
| Document generated by Confluence on Jan 27, 2014 16:56 |